This tutorial is mainly based on Tudip 2019.
Source: Tudip 2019.
Source: Tudip 2019.
Instance Name:
Select your nearest region and zone.
Region: ā¦
Zone: bspw. us-central1-a
Machine Type: select ān1-standard-1 (1 vCPU, 3,75 GB Speicherplatz) (You can increase the memory as per your need)
Boot Disk: Ubuntu 16.04 LTS
Boot disk type: Standard Persistent disk
Size(GB): 10
Keep āIdentity and API accessā as default.
Firewall: Click the checkbox to allow both HTTP and HTTPS traffic.
Click āManagement, security, disks, networking, sole tenancyā to expand and go to Disks section.
Uncheck āDelete boot disk when the instance is deletedā deletion rule.
Click on the āCreateā button.
Name:
Targets: All instances in the network
Source IP ranges: 0.0.0.0/0
Protocols and ports: Select āSpecified protocols and portsā option.
tcp: 8888
Keep other configuration as default.
Click on the Create button.
Source: Tudip 2019.
Now your instance is ready!
We now follow the steps provided in this tutorial.
Source: Tudip 2019.
sudo apt update
sudo apt upgrade
cd /tmp
curl -O https://repo.anaconda.com/archive/Anaconda3-2019.10-Linux-x86_64.sh
bash Anaconda3-2019.10-Linux-x86_64.sh
Press Enter to continue the installation and type yes to accept when prompted.
Press Enter to confirm the location and you will need to agree to install Anaconda in the confirmed location.
Activate and Test Anaconda
To activate the installation in your same terminal session run the following commands.
cd ~/
source ~/.bashrc
Verify the Anaconda installation with the conda command.
conda list
jupyter notebook --generate-config
vi ~/.jupyter/jupyter_notebook_config.py
c = get_config()
c.NotebookApp.ip = '*'
c.NotebookApp.open_browser = False
c.NotebookApp.port = 8888
Esc:wq to save and exit from the file.Run the command below:
jupyter notebook
Now, you can launch the notebook in your browser
http://
For example http://103.298.133.347:8888
conda install -c conda-forge mlflow